home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / system / ffg202.zip / UTIL_BAT.ZIP / ATTROFF.BAT next >
DOS Batch File  |  1994-10-23  |  569b  |  19 lines

  1. @echo off
  2. cls
  3. for %%f in (h H s S r R a A) do if %2.==%%f. goto OKAY
  4. goto USAGE
  5. :OKAY
  6.   :: This utility turns off the specified attribute for all specified files
  7.   :: that have the specified attribute flag set.
  8.   ffg /qm %1 /a%2 "/eattrib -%2 %%n"
  9.   @echo off
  10.   goto END
  11. :USAGE
  12.   echo USAGE: %0 [DriveSpec:]FileMask [H,S,R,A]
  13.   echo.
  14.   echo        H = hidden; S = System; R = Read Only; A = Archive
  15.   echo.
  16.   echo %0 turns off the specified attribute for files that have it set. The user
  17.   echo is given an opportunity to confirm for each file.
  18. :END
  19.